home *** CD-ROM | disk | FTP | other *** search
- The configuration file consists of one or more blocks that start with
- BEGIN POLYXARC and end with END POLYXARC (case insensitive). Between the
- delimiting statements are one or more keywords, one per line. See POLYXARC.DOC
- for more details.
-
- BEGIN POLYXARC
- ;
- ; ARC level overwrite extract command_template
- ; ARC5 level overwrite extract command_template
- ; ARC6 level overwrite extract command_template
- ; %1: extraction string
- ; %2: overwrite string
- ; %3: archive file spec
- ; %4: extracted file spec
- ;
- ; The extract and overwrite strings may be no longer than 5 characters
- ; each.
- ;
- ; ARC5 is the same as ARC. ARC6 is for newer ARC programs. ARC+PLUS
- ; (ARC v7) is a version 6 program, so use ARC6 for it.
- ;
- ; Order is unimportant.
- ;
- ; This should work with the original ARC program.
- ; ARC 8 w ! arc e%2 %3 %4
- ARC 8 /r ! arce %3 %4 %2
- ; ARC 9 /r ! pkxarc %2 %3 %4
- ARC 9 /r ! pkunpak %2 %3 %4
- ARC 11 /WA ! pak /e %2 %3 %4
- ; If you want to overwrite older files by default, try this instead:
- ; ARC 11 /WA /WO pak /e %1%2 %3 %4
- ; This is for version 6 of ARC.
- ; ARC6 9 w ! arc e%2 %3 %4
- ; This is for the free-distribution ARC+PLUS extractor.
- ARC6 10 /o ! xarc %2 %3 %4
- ; This is for ARC+PLUS itself.
- ; ARC6 10 o ! arc e%2 %3 %4
- ;
- ; SIGNATURE offset signature overwrite extract command_template
- ; %1: extraction string
- ; %2: overwrite string
- ; %3: archive file spec
- ; %4: extracted file spec
- ;
- ; The signature, extract and overwrite strings may be no longer than
- ; 5 characters each.
- ;
- SIGNATURE -3 DWC w "" dwc e%2 %3 %4
- SIGNATURE 2 -lh /mc "" lharc e %2 %3 %4
- SIGNATURE 0 <1B> "" "" xarcmac e %3 %4
- SIGNATURE 0 ZOO O "" zoo x%2 %3 %4
- SIGNATURE 0 <60EA> -y "" arj e %2 %3 %4
- SIGNATURE 0 PK -o "" pkunzip %2 %3 %4
- ; Note: version 2.51 of PAK now does ZIP files! This command line will cause
- ; PAK to automatically overwrite older files when the overwrite switch is not
- ; specified.
- ; SIGNATURE 0 PK /WA /WO pak e /z %1%2 %3 %4
- ;
- ; This line is here so I can test run-time memory requirements.
- ; Feel free to remove it.
- ;
- SIGNATURE 0 TEST -o ! RMAP
- ;
- ; NOSORT
- ;
- END POLYXARC